home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1998 September
/
Macworld (1998-09).dmg
/
Shareware World
/
Info
/
For Developers
/
MacZoop 1.8.3
/
More Classes
/
Threads
/
ZThreadedApplication.h
< prev
Wrap
Text File
|
1997-08-22
|
720b
|
42 lines
/*************************************************************************************************
*
*
* ObjectMacZapp -- a standard Mac OOP application template
*
*
*
* ZThreadedApplication.h -- the threaded application object
*
*
*
*
*
* © 1996, Graham Cox
*
*
*
*
*************************************************************************************************/
#pragma once
#ifndef __ZTHREADEDAPPLICATION__
#define __ZTHREADEDAPPLICATION__
#ifndef __ZAPPLICATION__
#include "ZApplication.h"
#endif
class ZThreadedApplication : public ZApplication
{
public:
virtual void InitMacZoop( const short numMasterBlocks = 8 );
virtual void Process1Event();
};
extern Boolean gMacHasThreadManager;
#endif